Get Form
AutomatR.GoogleForms.Activities.GetForm
The "Get Form" activity in AutomatR is part of the Google Forms activities package, utilizing the Google Forms API to retrieve details about a specific form. This activity enables users to obtain information about the structure and properties of a Google Form.
Properties
Name | Description |
---|---|
Input | |
Form ID | The unique identifier of the form for which details are to be retrieved. String variables containing the Form ID. This field is required. |
Misc | |
Display Name | Provides a customizable name for the activity displayed in the workflow. The display name enhances clarity and organization within the automation project. String variables containing the desired display name. |
Optional | |
Delay | Specifies the amount of time (in seconds) to wait before starting the activity. Useful for handling synchronization issues. Integer variables containing the delay duration. Example: If the amount of time is 1000 milliseconds or 1 sec, i.e., 1. |
Output | |
Result | Returns the response as Form Details in a Form object format. Variables of type Form to store the form details response. |
How to use:
- Drag and drop the "Get Form" activity onto the workflow.
- Configure the properties by specifying the Form ID for which details are to be retrieved.
- Optionally, configure the delay before starting the activity.
- Execute the workflow to obtain details about the specified Google Form.
Example:
Consider an example where the "Get Form" activity is used to retrieve details about a Google Form with the Form ID "formId":
Get Form:
Form ID: "formId"
Delay: 2
Result: formDetails
In this example, the activity retrieves details about the specified Google Form with the Form ID "formId." The response is stored in the variable "formDetails" for further handling in the workflow.